home *** CD-ROM | disk | FTP | other *** search
- package com.ms.ie;
-
- import com.ms.com.IUnknown;
- import com.ms.com.Variant;
- import com.ms.com._Guid;
-
- public interface IWebBrowser extends IUnknown {
- _Guid iid = new _Guid(-357422399, (short)12481, (short)4559, (byte)-89, (byte)-21, (byte)0, (byte)0, (byte)-64, (byte)91, (byte)-82, (byte)11);
-
- Object getContainer();
-
- String getLocationURL();
-
- boolean getBusy();
-
- void Refresh();
-
- Object getParent();
-
- Object getDocument();
-
- void GoForward();
-
- void Stop();
-
- String getLocationName();
-
- int getTop();
-
- void setTop(int var1);
-
- Object getApplication();
-
- void Refresh2(Variant var1);
-
- void Navigate(String var1, Variant var2, Variant var3, Variant var4, Variant var5);
-
- int getLeft();
-
- void setLeft(int var1);
-
- void GoHome();
-
- String getType();
-
- boolean getTopLevelContainer();
-
- int getHeight();
-
- void GoSearch();
-
- void GoBack();
-
- void setHeight(int var1);
-
- int getWidth();
-
- void setWidth(int var1);
- }
-